home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000435_news@columbia.edu_Thu Dec 15 01:02:07 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA26661
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 14 Dec 1994 20:02:11 -0500
  3. Received: by apakabar.cc.columbia.edu id AA19724
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 14 Dec 1994 20:02:10 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: HELP! creating a delete key
  9. Date: 15 Dec 1994 01:02:07 GMT
  10. Organization: Columbia University
  11. Lines: 29
  12. Message-Id: <3co4if$j88@apakabar.cc.columbia.edu>
  13. References: <3cno5a$3ihv@unix1.sncc.lsu.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <3cno5a$3ihv@unix1.sncc.lsu.edu>,
  18. Paul Velardo <itspaul@unix1.sncc.lsu.edu> wrote:
  19. >We are telling users to use the DECVT241 terminal emulator...
  20. >
  21. You mean VT220?
  22.  
  23. >to connect to our system when using kermit 3.13.
  24. >We have run into the problem of not having a destructive delete
  25. >key and can't figure out how to map one onto the delete key itself.
  26. >
  27. The Delete key sends the Delete character (\127) unless you tell it
  28. otherwise.  The other common choice is Backspace (\8).  If neither
  29. of these work for you, then you are probably facing a host or
  30. application that wants something else.  Kermit does not know what
  31. your application wants -- it is up to you to make them agree.
  32.  
  33. The trick is to either:
  34.  
  35.  (a) Find out what the application wants and then use SET KEY to
  36.      assign the desired sequence to the desired key, or:
  37.  
  38.  (b) Reconfigure the application to accept a different character
  39.      as a destructive backspace.
  40.  
  41. Some applications actually want you to send the following sequence
  42. in order to do a destructive backspace: \8\32\8 - try that.  Or try
  43. the arrow-key equivalent, \27OD\32\27OD, or \27[D\32\27[D.
  44.  
  45. - Frank